The Elements Of Programming Style (book)
   HOME

TheInfoList



OR:

''The Elements of Programming Style'', by
Brian W. Kernighan Brian Wilson Kernighan (; born 1942) is a Canadian computer scientist. He worked at Bell Labs and contributed to the development of Unix alongside Unix creators Ken Thompson and Dennis Ritchie. Kernighan's name became widely known through co-aut ...
and
P. J. Plauger Phillip James (P.J. or Bill) Plauger (; born January 13, 1944, Petersburg, West Virginia) is an author, entrepreneur and computer programmer. He has written and co-written articles and books about programming style, software tools, and the C pr ...
, is a study of
programming style Programming style, also known as code style, is a set of rules or guidelines used when writing the source code for a computer program. It is often claimed that following a particular programming style will help programmers read and understand sour ...
, advocating the notion that computer programs should be written not only to satisfy the compiler or personal programming "style", but also for "readability" by humans, specifically
software maintenance Software maintenance in software engineering is the modification of a software product after delivery to correct faults, to improve performance or other attributes. A common perception of maintenance is that it merely involves fixing defects. H ...
engineers,
programmers A computer programmer, sometimes referred to as a software developer, a software engineer, a programmer or a coder, is a person who creates computer programs — often for larger computer software. A programmer is someone who writes/creates ...
and
technical writers A technical writer is a professional information communicator whose task is to transfer information between two or more parties, through any medium that best facilitates the transfer and comprehension of the information. Technical writers researc ...
. It was originally published in 1974. The book pays explicit homage, in title and tone, to ''
The Elements of Style ''The Elements of Style'' is an American English writing style guide in numerous editions. The original was written by William Strunk Jr. in 1918, and published by Harcourt in 1920, comprising eight "elementary rules of usage", ten "elementary p ...
'', by Strunk &
White White is the lightest color and is achromatic (having no hue). It is the color of objects such as snow, chalk, and milk, and is the opposite of black. White objects fully reflect and scatter all the visible wavelengths of light. White on ...
and is considered a practical template promoting Edsger Dijkstra's
structured programming Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive use of the structured control flow constructs of selection ( if/then/else) and repetition ( ...
discussions. It has been influential and has spawned a series of similar texts tailored to individual languages, such as ''The Elements of C Programming Style'', ''The Elements of C# Style'', ''The Elements of Java(TM) Style'', ''The Elements of MATLAB Style'', etc. The book is built on short examples from actual, published programs in programming textbooks. This results in a practical treatment rather than an abstract or academic discussion. The style is diplomatic and generally sympathetic in its criticism, and unabashedly honest as well— some of the examples with which it finds fault are from the authors' own work (one example in the second edition is from the first edition).


Lessons

Its lessons are summarized at the end of each section in pithy maxims, such as "Let the machine do the dirty work": # Write clearly – don't be too clever. # Say what you mean, simply and directly. # Use library functions whenever feasible. # Avoid too many temporary variables. # Write clearly – don't sacrifice clarity for efficiency. # Let the machine do the dirty work. # Replace repetitive expressions by calls to common functions. # Parenthesize to avoid ambiguity. # Choose variable names that won't be confused. # Avoid unnecessary branches. # If a logical expression is hard to understand, try transforming it. # Choose a data representation that makes the program simple. # Write first in easy-to-understand pseudo language; then translate into whatever language you have to use. # Modularize. Use procedures and functions. # Avoid gotos completely if you can keep the program readable. # Don't patch bad code – rewrite it. # Write and test a big program in small pieces. # Use recursive procedures for recursively-defined data structures. # Test input for plausibility and validity. # Make sure input doesn't violate the limits of the program. # Terminate input by end-of-file marker, not by count. # Identify bad input; recover if possible. # Make input easy to prepare and output self-explanatory. # Use uniform input formats. # Make input easy to proofread. # Use self-identifying input. Allow defaults. Echo both on output. # Make sure all variables are initialized before use. # Don't stop at one bug. # Use debugging compilers. # Watch out for off-by-one errors. # Take care to branch the right way on equality. # Be careful if a loop exits to the same place from the middle and the bottom. # Make sure your code does "nothing" gracefully. # Test programs at their boundary values. # Check some answers by hand. # 10.0 times 0.1 is hardly ever 1.0. # 7/8 is zero while 7.0/8.0 is not zero. # Don't compare floating point numbers solely for equality. # Make it right before you make it faster. # Make it fail-safe before you make it faster. # Make it clear before you make it faster. # Don't sacrifice clarity for small gains in efficiency. # Let your compiler do the simple optimizations. # Don't strain to re-use code; reorganize instead. # Make sure special cases are truly special. # Keep it simple to make it faster. # Don't diddle code to make it faster – find a better algorithm. # Instrument your programs. Measure before making efficiency changes. # Make sure comments and code agree. # Don't just echo the code with comments – make every comment count. # Don't comment bad code – rewrite it. # Use variable names that mean something. # Use statement labels that mean something. # Format a program to help the reader understand it. # Document your data layouts. # Don't over-comment Modern readers may find it a shortcoming that its examples use older
procedural programming languages Procedural programming is a programming paradigm, derived from imperative programming, based on the concept of the ''procedure call''. Procedures (a type of routine or subroutine) simply contain a series of computational steps to be carried ...
( Fortran and
PL/I PL/I (Programming Language One, pronounced and sometimes written PL/1) is a procedural, imperative computer programming language developed and published by IBM. It is designed for scientific, engineering, business and system programming. I ...
) which are quite different from those popular today. Few of today's popular languages had been invented when this book was written. However, many of the book's points that generally concern stylistic and structural issues transcend the details of particular languages.


Reception

''
Kilobaud Microcomputing ''Kilobaud Microcomputing'' was a magazine dedicated to the computer homebrew hobbyists from 1977 to 1983. How ''kilobaud'' started Wayne Green, the editor and publisher of ''kilobaud'', had been the publisher of ''BYTE'' magazine, (another i ...
'' stated that "If you intend to write programs to be used by other people, then you should read this book. If you expect to become a professional programmer, this book is mandatory reading".


References

*B. W. Kernighan and P. J. Plauger, ''The Elements of Programming Style'', McGraw-Hill, New York, 1974. *B. W. Kernighan and P. J. Plauger, ''The Elements of Programming Style 2nd Edition'', McGraw Hill, New York, 1978.


External links


J. Plauger selected quotes from ''The Elements of Programming Style''
* {{DEFAULTSORT:Elements Of Programming Style, The 1974 non-fiction books Computer programming books Collaborative non-fiction books McGraw-Hill books